home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / osi / quipu / upgrade-7.0.shar / upgrade-7.0 / freespace < prev    next >
Encoding:
Text File  |  1991-08-20  |  607 b   |  33 lines

  1. #!/bin/sh 
  2. #
  3. # (c) Copyright X-Tel Services Ltd. 1991
  4. # All rights reserved.
  5. #
  6. # CJR - 25/2/91
  7. #
  8. # Check there is room on disk.
  9. #
  10. # freespace [directory]
  11. #
  12. ######################################################
  13. fd=${1-.}
  14. if ( egrep -s -i "SunOS Release 4.1" /etc/motd ) ; then  
  15.     sr=45000
  16. else 
  17.          sr=55000
  18. fi
  19. fs=`df $fd | awk '{if (NR==2) printf $4}'`
  20. if [ "X$fs" = "X" ]; then
  21.     fs=`df $fd | awk '{if (NR==3) printf $3}'`
  22.     if [ "X$fs" = "X" ]; then
  23.         echo "Can't check free disk - assuming OK"
  24.         exit 0
  25.     fi
  26. fi
  27. if [ $fs -gt $sr ]; then
  28.     echo -n
  29. else
  30.     echo "Only $fs KBytes free - not enough!"
  31.     exit 1
  32. fi
  33.